Dynamicweb 8 Documentation
FindAll Method

Condition.
Returns all elements from the collection that satisfies the condition.
Syntax
'Declaration
 
Public Function FindAll( _ 
   ByVal predicate As Func(Of T,Boolean) _ 
) As IEnumerable(Of T)
public IEnumerable<T> FindAll( 
   Func<T,bool> predicate 
)

Parameters

predicate
Condition.

Return Value

All elements from the collection that satisfies the condition.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Collection<T> Class
Collection<T> Members

Send Feedback